home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 8 / sc.zip / SC_CC.BAT < prev    next >
DOS Batch File  |  1986-06-11  |  330b  |  18 lines

  1. echo off
  2. echo Software Catalog 'Copy Catalog'
  3. echo (c) Copyright 1986 Software Creations
  4. echo -
  5. echo Insert Software Catalog master disk in A:
  6. pause
  7. if %1x == x goto error1
  8. if exist %1 goto error2
  9. copy a:sc_cat.dbf %1
  10. goto end
  11. :error1
  12. copy a:sc_cat.dbf *.*
  13. goto end
  14. :error2
  15. echo %1 exists already.
  16. goto end
  17. :end
  18.